/*定义css变量*/
:root{ 
	--mywidth:520px;
	--myheight: 350px;
}

*{
	margin: 0;
	padding: 0;
}
html,body{
	width: 100%;
	height: 100%;
}
body{
	/*background-color: #1F1F1F;*/
}
ul{
	list-style: none;
}
.content{
	/*width: 100%;*/
	height: 100%;
	/*display: flex;*/
    /*justify-content: center;*/
    /*align-items: center;*/
}
.a-content{
	/*border: 1px solid rgba(0,0,0,0.1);*/
    /*border-radius:20px;*/
    /*-webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);*/
    /*box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);*/
    position: relative;
}

.carousel-content{
	width: 100%;
	height: var(--myheight);
	
	position: relative;
	overflow: hidden;
	/*border-radius:10px;*/
}
.carousel{
	height: var(--myheight);
	position: absolute;
}
.carousel li{
	float: left;
}
.carousel li,.carousel li img{
	width: var(--mywidth);
	height: var(--myheight);
	cursor: pointer;
}
.img-index{
	position: absolute;
    bottom: 10px;
    /*width: 100%;
    display: flex;
    justify-content: center;*/
   right: 8px;
}
.img-index li{
	float: left;
    width: 12px;
    height: 12px;
    line-height: 12px;
    text-align: center;
    border-radius: 6px;
    background-color: rgba(255,255,255,0.4);
    font-size: 12px;
    cursor: pointer;
    margin: 0 3px;
    color: #fff;
}
.img-index li.js_index,.img-index li:hover{
	background-color: #227DF4;
}
.carousel-prev,.carousel-next{
	position: absolute;
	display: inline-block;
	bottom: 31px;
	cursor: pointer;
    z-index: 9999;
}
.carousel-prev{
	left: 10px;
}
.carousel-next{
	right: 10px;
}
.carousel-prev img,.carousel-next img{
	height: 18px;;
}
.carousel li{
	position: relative;
}
.swiper_content p.coten{
	color: #c6d4be;
}
.swiper_content{
	position: absolute;
	bottom: 0;
	background: rgba(0,0,0,0.5);
	width: 100%;
	padding: 10px 10px;
	min-height: 80px;
	max-height: var(--myheight);
	overflow-y: scroll;
	display: flex;
	justify-content: center;
	align-items: center;
}
.swiper_content{
	color: #fff;
}
.swiper_content a{
	padding-left: 40px;
	padding-right: 10px;
	width:88%;
	/* overflow : hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical; */
	font-size: 20px;
	text-align: center;
	line-height: 28px;
	color: #fff;
}
.swiper_content .num{
	position: absolute;
	left: 30px;
	bottom: 20px;
	font-size: 20px;
	z-index: 999;
	color: #fff;
}
.swiper_content .num .active{
	font-size:30px;
	font-weight: bold;
}




@media screen and (max-width:640px){
	:root{ 
	--mywidth:100vw;
	--myheight: 70vw;
}
.content{
	padding:0 4px 0 4px!important;
	
}
}